runtime.dbgVar.atomic (field)

11 uses

	runtime (current package)
		runtime1.go#L298: 	atomic *atomic.Int32 // for variables that can be changed during execution
		runtime1.go#L372: 	{name: "asynctimerchan", atomic: &debug.asynctimerchan},
		runtime1.go#L391: 	{name: "panicnil", atomic: &debug.panicnil},
		runtime1.go#L398: 	{name: "traceallocfree", atomic: &debug.traceallocfree},
		runtime1.go#L401: 	{name: "tracebacklabels", atomic: &debug.tracebacklabels, def: 0},
		runtime1.go#L430: 			} else if v.atomic != nil {
		runtime1.go#L431: 				v.atomic.Store(v.def)
		runtime1.go#L481: 		if v.atomic != nil && !seen[v.name] {
		runtime1.go#L482: 			v.atomic.Store(0)
		runtime1.go#L545: 						} else if v.atomic != nil {
		runtime1.go#L546: 							v.atomic.Store(int32(n))